home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWrap / Source / ListCell.h < prev    next >
Text File  |  1991-09-15  |  373b  |  18 lines

  1. #import <appkit/SelectionCell.h>
  2. @interface ListCell:SelectionCell
  3. {
  4.     NXCoord    ascender, descender, lineHeight;
  5.     BOOL        controlDragEnabled;
  6.  }
  7. - init;
  8.  
  9. - setFont:fontObj;
  10.  
  11. // must subclass the following it get proper cell drawing.
  12. - drawInside:(const NXRect *)cellFrame inView:controlView;
  13.  
  14. - setControlDragEnabled:(BOOL) aBool;
  15. - (BOOL)controlDragEnabled;
  16. @end
  17.  
  18.